home *** CD-ROM | disk | FTP | other *** search
/ Champak 49 / Volume 49 - JOGO DISK .iso / Games / grabthegrub.swf / scripts / frame_1 / DoAction_3.as < prev    next >
Encoding:
Text File  |  2007-10-01  |  451 b   |  10 lines

  1. this.masterVolume = new Sound(this);
  2. this.createEmptyMovieClip("soundHolder_mc",this.getNextHighestDepth());
  3. soundList = ["opening","paris","resturaunt","kitchen","winner","loser","r_1","r_2","r_3","r_4","r_5","r_6"];
  4. for(var i in soundList)
  5. {
  6.    tmp = this[soundList[i] + "_sound"] = soundHolder_mc.createEmptyMovieClip(soundList[i],soundHolder_mc.getNextHighestDepth());
  7.    tmp.snd = new Sound(tmp);
  8.    tmp.snd.attachSound(soundList[i]);
  9. }
  10.